1 package attr;
2
3 import java.awt.*;

4
5 public
class Theme {
6     
public static final int GUI_WIDTH = 800;
7     
public static final int GUI_HEIGHT = 600;
8     
public static final int BUTTON_PRIMARY_WIDTH = 100;
9     
10     
public static final Color BACKGROUND_PANEL = new Color(250, 250, 250);
11     
public static final Color BACKGROUND_HEADER = new Color(0, 11, 106);
12     
public static final Color COLOR_TITLE = new Color(0, 11, 106);
13     
public static final Color COLOR_BUTTON_PRIMARY = new Color(255, 255, 255);
14     
public static final Color BACKGROUND_BUTTON_PRIMARY = new Color(0, 11, 106);
15     
16     
public static final Font FONT_TITLE = new Font(Font.SANS_SERIF, Font.BOLD, 40);
17     
public static final Font FONT_BUTTON = new Font(Font.SANS_SERIF, Font.BOLD, 14);
18     
public static final Font FONT_REGULAR = new Font(Font.SANS_SERIF, Font.PLAIN, 20);
19     
public static final Font FONT_INPUT = new Font(Font.SANS_SERIF, Font.PLAIN, 16);
20 }


Gõ tìm kiếm nhanh...